home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 8 / FM Towns Free Software Collection 8.iso / t_os / artemis / artsrc2 / grppoint.c < prev    next >
C/C++ Source or Header  |  1994-06-01  |  203b  |  17 lines

  1. /*
  2.     grppoint.c
  3. */
  4.  
  5. #include <ryosuke.h>
  6.  
  7. extern    char    *EGB_work;
  8.  
  9. int        grp_point(int x, int y)
  10.     {
  11.     int        ret;
  12.     EGB_point( EGB_work, 0, x, y, &ret);
  13.     return ret;
  14.     }
  15.  
  16. /* end of grppoint.c */
  17.